home *** CD-ROM | disk | FTP | other *** search
- /* abc.h
- *
- * Local definitions to improve readability
- *
- */
-
- #define True 1
- #define False 0
- #define Nil 0
- #define and &&
- #define or ||
- #define not !
- #define equals ==
- #define notequal !=
-
-
- /* unsigned char,longs, shorts
- * (unsigned longs may not be
- * available with all compilers
- */
- #define uchar unsigned char
- #define ushort unsigned short
- #define ulong unsigned long
-
-
- /* General purpose external routines */
-
- extern char *CtoPstr(); /* String conversion routines */
- extern char *PtoCstr(); /* return a pointer to a char */